home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / hypertxt / msdos / hydos10 / printer.sys < prev    next >
Text File  |  1991-04-23  |  2KB  |  39 lines

  1.                                 PRINTER.SYS
  2.               Support for code page switching on IBM printers
  3.               See also <CHCP> <NLSFUNC> <DEVICE> <CONFIG.SYS>
  4.  
  5. This is a device driver to support code page switching on certain
  6. types of printers. Printers supported are Proprinter Model 4201 and
  7. IBM Quietwriter III Printer Model 5202.
  8.  
  9. USE: DEVICE=[d:][path][PRINTER.SYS LPT#[:] = (type[,[hwcp[,...]][,n]])
  10.  
  11. LPT# specifies the printer device and can be entered up to three
  12.      times, one for printers LPT1, LPT2, and LPT3.  The device name PRN
  13.      may be used in place of LPT1.
  14. type specifies one of the following printer types:
  15.        4201 - IBM Proprinter Model 4201 or 4202 XL
  16.        5202 - IBM Quietwriter III Model 5202
  17.        4208 - IBM 4207 or 4208, Proprinter X24 or XL24
  18. hwcp specifies the code page image built into the hardware (437, 850, 860,
  19.      863, or 865).  For some printers multiple code pages may be
  20.      specified. For the IBM Quietwriter III Model 5202, the hwcp can be
  21.      one code page, such as 437, or it can be a pair of code pages, such
  22.      as (437,850). For the IBM Quietwriter III Model 5202, if two hardware
  23.      code pages have been specified, then no code pages can be prepared,
  24.      and the value of n must equal zero.
  25. n    specifies the number of additional code pages that can be prepared.
  26.      The value of n determines the number of buffers PRINTER.SYS will set
  27.      up to hold code pages being prepared.  The maximum number of code
  28.      pages that can be prepared is 12.  This figure is dependant on the
  29.      printer hardware
  30.  
  31. EXAMPLE: DEVICE=PRINTER.SYS LPT1:= (4201, 437, 1) LPT2:=(5202, 437, 0)
  32. This example installs the code page switching for the LPT1: and LPT2:
  33. devices.  It instructs the LPT1: driver that the printer is a IBM
  34. Proprinter Model 4201 and the LPT2: driver that the printer is an IBM
  35. Quietwriter III Model 5202.  Both printers have the 437 code page
  36. built in.  The LPT1: driver is able to hold one code page prepared by
  37. the MODE command, while the LPT2: driver can have one code page
  38. prepared.
  39.